@charset "UTF-8";
html {
  font-size: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  padding-top: 75px;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

:root {
  --fontColorWhite:rgb(255 255 255);
  --borderColor:rgb(230 230 230);
  --buttonColorBlack:rgb(40 40 45);
}

@keyframes expandBorder {
  0% {
    transform: scaleX(0); /* 最初は左から */
  }
  100% {
    transform: scaleX(1); /* アニメーション終了時には右端まで */
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInFromTopRight {
  0% {
    opacity: 0; /* 最初は透明 */
    transform: translate(50%, -50%) rotate(20deg); /* 右上から出現 */
  }
  50% {
    opacity: 0.5; /* 中間点で半透明 */
    transform: translate(25%, -25%) rotate(20deg); /* 少し下に動く */
  }
  100% {
    opacity: 1; /* 最終的に不透明 */
    transform: translate(0, 0) rotate(20deg); /* 元の位置に戻る */
  }
}
@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0; /* 右端外から開始 */
  }
  100% {
    transform: translateX(0);
    opacity: 1; /* 左に移動して元の位置 */
  }
}
@keyframes slideFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0; /* 右端外から開始 */
  }
  100% {
    transform: translateX(0);
    opacity: 1; /* 左に移動して元の位置 */
  }
}
@keyframes scaleBigger {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes transparentStyle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menuSlide {
  100% {
    transform: translateX(0%);
  }
}
@keyframes articleSlide {
  0% {
    transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes serviceStyleSlideUp {
  0% {
    transform: translateY(10rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes serviceStyleLeft {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes secondaryblur {
  0% {
    filter: blur(50px);
    transform: translateX(6rem);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes borderAnimation {
  0% {
    transform: scaleY(0); /* 高さが0の状態から */
    opacity: 1;
  }
  100% {
    transform: scaleY(1); /* 高さが100%になり */
    opacity: 1;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.scrollAnimation,
.slideLeftAnimation {
  overflow-x: hidden;
}

header {
  background-color: white;
  height: 75px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  position: fixed;
}
@media screen and (max-width: 768px) {
  header {
    height: 6rem;
  }
}
header .itemCenter {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .itemCenter {
    justify-content: space-between;
    padding: 0 3rem;
  }
}
header .itemCenter > a {
  width: 192px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .itemCenter > a {
    width: 18rem;
  }
}
header .itemCenter > a img {
  opacity: 0;
  width: 100%;
  transform: translate(0, 100%);
}
header nav {
  font-size: 13px;
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
header nav ul li {
  min-width: 10rem;
  overflow: hidden;
  line-height: 1.8;
  position: relative;
}
header nav ul li a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  header nav ul li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
header nav ul li a {
  transform: translate(0, 100%);
  width: -moz-max-content;
  width: max-content;
}
header nav ul li:nth-child(n+5):nth-child(-n+8) a {
  transform: translate(0, 100%);
}
header Button {
  width: 40px;
  height: 13px;
  margin-left: 3rem;
  position: relative;
}
header Button picture {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  animation: scaleBigger 0.7s ease-out forwards;
  animation-delay: 1.4s;
}
@media screen and (max-width: 768px) {
  header Button picture {
    animation-delay: 0.8s;
  }
}
header Button picture source,
header Button picture img {
  width: 100%;
  height: 100%;
  display: block;
}
header::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  background-color: rgb(230, 230, 230);
  animation: expandBorder 1.2s forwards;
}

main {
  transition-duration: 0.5s;
}

main:not(.technology, .venture) {
  background-color: #fff;
  position: relative;
}

main.active {
  transform: translateX(-20rem);
  filter: brightness(65%);
}

.Heading {
  padding: 2.4rem;
  min-height: calc(60rem - 75px);
  height: calc(100vh - 75px);
}
.Heading .HeadingContainer {
  padding-left: 14rem;
  display: flex;
  justify-content: flex-start;
  background-color: rgb(243, 244, 246);
  position: relative;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Heading .HeadingContainer {
    justify-content: flex-start;
    padding-left: 4rem;
  }
}
.Heading .HeadingContainer h1 {
  font-size: 8rem;
  letter-spacing: -0.12em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .Heading .HeadingContainer h1 {
    font-size: 3.8rem;
    opacity: 0;
  }
}
.Heading .HeadingContainer h1 .doYouKnow {
  display: block;
}
@media screen and (max-width: 768px) {
  .Heading .HeadingContainer h1 .doYouKnow {
    font-size: 4.6rem;
  }
}
.Heading .HeadingContainer h1 span {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.Heading .HeadingContainer .HeadingContainerOther {
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
}
@media screen and (max-width: 768px) {
  .Heading .HeadingContainer .HeadingContainerOther {
    opacity: 1 !important;
  }
  .Heading .HeadingContainer .HeadingContainerOther p {
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 3.8rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
  }
}

.servicePage {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.servicePage .elementTop {
  height: -moz-min-content;
  height: min-content;
  position: relative;
  display: flex;
  min-height: calc(100vh - 50px);
}
.servicePage .elementTop::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: rgb(230, 230, 230);
}
.servicePage .elementTopLeft {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  padding: 3rem 0;
  width: 23.3rem;
  font-weight: 400;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .servicePage .elementTopLeft {
    width: 8.8rem;
    padding: 4rem 3rem 6rem 3rem;
  }
}
.servicePage .elementTopLeft h2 {
  font-size: 8.5rem;
  line-height: 1;
  display: flex;
  white-space: nowrap;
  writing-mode: vertical-rl;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .servicePage .elementTopLeft h2 {
    font-size: 4.8rem;
    justify-content: flex-start;
  }
}
.servicePage .elementTopRight {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.servicePage .elementTopRight::after {
  opacity: 0;
  content: "";
  display: block;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  top: 0;
  width: 1px;
  position: absolute;
  transform-origin: top;
  background-color: var(--borderColor);
}
.servicePage .elementTopRight p {
  opacity: 0;
  position: relative;
  font-size: 7.8rem;
  padding: 3rem 11.6rem;
  line-height: 1.4;
}
.servicePage .elementTopRight p::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: var(--borderColor);
}
@media screen and (max-width: 768px) {
  .servicePage .elementTopRight p {
    padding: 7rem 3rem;
    font-size: 7.179vw;
  }
}
.servicePage .elementTopRight .elementTopRightBottom {
  padding: 6rem 11.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .servicePage .elementTopRight .elementTopRightBottom {
    padding: 6rem 3rem;
    display: block;
  }
}
.servicePage .elementTopRight .elementTopRightBottom ul {
  margin: 0;
  padding: 0;
}
.servicePage .elementTopRight .elementTopRightBottom ul li {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .servicePage .elementTopRight .elementTopRightBottom ul li {
    font-size: 1.5rem;
  }
}
.servicePage .elementTopRight .elementTopRightBottom ul li:not(:first-child) {
  margin-top: 2rem;
}
.servicePage .elementTopRight .elementTopRightBottom ul li a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .servicePage .elementTopRight .elementTopRightBottom ul li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.servicePage .elementTopRight .elementTopRightBottom ul li span {
  display: inline-block;
  width: 3.4rem;
}
.servicePage .viewMore {
  opacity: 1;
}
.servicePage .viewMore a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .servicePage .viewMore a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.servicePage .viewMore a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .servicePage .viewMore a:hover {
    color: rgb(40, 40, 45);
  }
  .servicePage .viewMore a:hover::before {
    transform: scale(1, 1);
  }
}
.servicePage::after {
  opacity: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  top: 0;
  position: absolute;
  transform: scaleX(var(--line-val));
  transform-origin: left;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230, 230, 230);
}

.cloudSign {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .cloudSign {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .cloudSign figure {
    order: -1;
  }
  .cloudSign .elementLeft {
    order: 1;
  }
}
.cloudSign .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.cloudSign .elementLeft div {
  opacity: 1;
}
.cloudSign .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.cloudSign .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.cloudSign .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.cloudSign .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.cloudSign .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.cloudSign .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.cloudSign .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .cloudSign .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .cloudSign .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.cloudSign .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .cloudSign .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.cloudSign figure {
  background-color: #0D64C9;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cloudSign figure {
    aspect-ratio: 13/12;
  }
}
.cloudSign figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.Bengo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .Bengo {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .Bengo figure {
    order: -1;
  }
  .Bengo .elementLeft {
    order: 1;
  }
}
.Bengo .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.Bengo .elementLeft div {
  opacity: 1;
}
.Bengo .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.Bengo .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.Bengo .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.Bengo .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.Bengo .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.Bengo .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.Bengo .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .Bengo .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .Bengo .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.Bengo .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .Bengo .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.Bengo figure {
  background-color: #F7723E;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Bengo figure {
    aspect-ratio: 13/12;
  }
}
.Bengo figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.Zeiri {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .Zeiri {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .Zeiri figure {
    order: -1;
  }
  .Zeiri .elementLeft {
    order: 1;
  }
}
.Zeiri .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.Zeiri .elementLeft div {
  opacity: 1;
}
.Zeiri .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.Zeiri .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.Zeiri .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.Zeiri .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.Zeiri .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.Zeiri .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.Zeiri .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .Zeiri .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .Zeiri .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.Zeiri .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .Zeiri .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.Zeiri figure {
  background-color: #00A6E3;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Zeiri figure {
    aspect-ratio: 13/12;
  }
}
.Zeiri figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .legal {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .legal figure {
    order: -1;
  }
  .legal .elementLeft {
    order: 1;
  }
}
.legal .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.legal .elementLeft div {
  opacity: 1;
}
.legal .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.legal .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.legal .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.legal .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.legal .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.legal .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.legal .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .legal .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .legal .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.legal .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .legal .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.legal figure {
  background-color: #111111;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .legal figure {
    aspect-ratio: 13/12;
  }
}
.legal figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.mediaBusiness {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mediaBusiness .elementTop {
  height: -moz-min-content;
  height: min-content;
  position: relative;
  display: flex;
  min-height: calc(100vh - 50px);
}
.mediaBusiness .elementTop::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: rgb(230, 230, 230);
}
.mediaBusiness .elementTopLeft {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  padding: 3rem 0;
  width: 23.3rem;
  font-weight: 400;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mediaBusiness .elementTopLeft {
    width: 8.8rem;
    padding: 4rem 3rem 6rem 3rem;
  }
}
.mediaBusiness .elementTopLeft h2 {
  font-size: 8.5rem;
  line-height: 1;
  display: flex;
  white-space: nowrap;
  writing-mode: vertical-rl;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mediaBusiness .elementTopLeft h2 {
    font-size: 4.8rem;
    justify-content: flex-start;
  }
}
.mediaBusiness .elementTopRight {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.mediaBusiness .elementTopRight::after {
  opacity: 0;
  content: "";
  display: block;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  top: 0;
  width: 1px;
  position: absolute;
  transform-origin: top;
  background-color: var(--borderColor);
}
.mediaBusiness .elementTopRight p {
  opacity: 0;
  position: relative;
  font-size: 7.8rem;
  padding: 3rem 11.6rem;
  line-height: 1.4;
}
.mediaBusiness .elementTopRight p::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: var(--borderColor);
}
@media screen and (max-width: 768px) {
  .mediaBusiness .elementTopRight p {
    padding: 7rem 3rem;
    font-size: 7.179vw;
  }
}
.mediaBusiness .elementTopRight .elementTopRightBottom {
  padding: 6rem 11.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mediaBusiness .elementTopRight .elementTopRightBottom {
    padding: 6rem 3rem;
    display: block;
  }
}
.mediaBusiness .elementTopRight .elementTopRightBottom ul {
  margin: 0;
  padding: 0;
}
.mediaBusiness .elementTopRight .elementTopRightBottom ul li {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .mediaBusiness .elementTopRight .elementTopRightBottom ul li {
    font-size: 1.5rem;
  }
}
.mediaBusiness .elementTopRight .elementTopRightBottom ul li:not(:first-child) {
  margin-top: 2rem;
}
.mediaBusiness .elementTopRight .elementTopRightBottom ul li a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .mediaBusiness .elementTopRight .elementTopRightBottom ul li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.mediaBusiness .elementTopRight .elementTopRightBottom ul li span {
  display: inline-block;
  width: 3.4rem;
}
.mediaBusiness .viewMore {
  opacity: 1;
}
.mediaBusiness .viewMore a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mediaBusiness .viewMore a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.mediaBusiness .viewMore a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .mediaBusiness .viewMore a:hover {
    color: rgb(40, 40, 45);
  }
  .mediaBusiness .viewMore a:hover::before {
    transform: scale(1, 1);
  }
}
.mediaBusiness .elementTop .elementTopRight p {
  height: 100%;
  align-content: center;
}

.businessLawyers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .businessLawyers {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .businessLawyers figure {
    order: -1;
  }
  .businessLawyers .elementLeft {
    order: 1;
  }
}
.businessLawyers .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.businessLawyers .elementLeft div {
  opacity: 1;
}
.businessLawyers .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.businessLawyers .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.businessLawyers .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.businessLawyers .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.businessLawyers .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.businessLawyers .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.businessLawyers .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .businessLawyers .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .businessLawyers .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.businessLawyers .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .businessLawyers .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.businessLawyers figure {
  background-color: #25295D;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .businessLawyers figure {
    aspect-ratio: 13/12;
  }
}
.businessLawyers figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.bengoNews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .bengoNews {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .bengoNews figure {
    order: -1;
  }
  .bengoNews .elementLeft {
    order: 1;
  }
}
.bengoNews .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.bengoNews .elementLeft div {
  opacity: 1;
}
.bengoNews .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.bengoNews .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.bengoNews .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.bengoNews .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.bengoNews .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.bengoNews .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.bengoNews .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .bengoNews .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .bengoNews .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.bengoNews .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .bengoNews .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.bengoNews figure {
  background-color: #F7723E;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bengoNews figure {
    aspect-ratio: 13/12;
  }
}
.bengoNews figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.CareerBusiness {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.CareerBusiness .elementTop {
  height: -moz-min-content;
  height: min-content;
  position: relative;
  display: flex;
  min-height: calc(100vh - 50px);
}
.CareerBusiness .elementTop::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: rgb(230, 230, 230);
}
.CareerBusiness .elementTopLeft {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  padding: 3rem 0;
  width: 23.3rem;
  font-weight: 400;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .CareerBusiness .elementTopLeft {
    width: 8.8rem;
    padding: 4rem 3rem 6rem 3rem;
  }
}
.CareerBusiness .elementTopLeft h2 {
  font-size: 8.5rem;
  line-height: 1;
  display: flex;
  white-space: nowrap;
  writing-mode: vertical-rl;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .CareerBusiness .elementTopLeft h2 {
    font-size: 4.8rem;
    justify-content: flex-start;
  }
}
.CareerBusiness .elementTopRight {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.CareerBusiness .elementTopRight::after {
  opacity: 0;
  content: "";
  display: block;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  top: 0;
  width: 1px;
  position: absolute;
  transform-origin: top;
  background-color: var(--borderColor);
}
.CareerBusiness .elementTopRight p {
  opacity: 0;
  position: relative;
  font-size: 7.8rem;
  padding: 3rem 11.6rem;
  line-height: 1.4;
}
.CareerBusiness .elementTopRight p::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: var(--borderColor);
}
@media screen and (max-width: 768px) {
  .CareerBusiness .elementTopRight p {
    padding: 7rem 3rem;
    font-size: 7.179vw;
  }
}
.CareerBusiness .elementTopRight .elementTopRightBottom {
  padding: 6rem 11.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .CareerBusiness .elementTopRight .elementTopRightBottom {
    padding: 6rem 3rem;
    display: block;
  }
}
.CareerBusiness .elementTopRight .elementTopRightBottom ul {
  margin: 0;
  padding: 0;
}
.CareerBusiness .elementTopRight .elementTopRightBottom ul li {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .CareerBusiness .elementTopRight .elementTopRightBottom ul li {
    font-size: 1.5rem;
  }
}
.CareerBusiness .elementTopRight .elementTopRightBottom ul li:not(:first-child) {
  margin-top: 2rem;
}
.CareerBusiness .elementTopRight .elementTopRightBottom ul li a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .CareerBusiness .elementTopRight .elementTopRightBottom ul li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.CareerBusiness .elementTopRight .elementTopRightBottom ul li span {
  display: inline-block;
  width: 3.4rem;
}
.CareerBusiness .viewMore {
  opacity: 1;
}
.CareerBusiness .viewMore a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .CareerBusiness .viewMore a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.CareerBusiness .viewMore a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .CareerBusiness .viewMore a:hover {
    color: rgb(40, 40, 45);
  }
  .CareerBusiness .viewMore a:hover::before {
    transform: scale(1, 1);
  }
}
.CareerBusiness .elementTop .elementTopRight p {
  height: 100%;
  align-content: center;
}

.bengoCareer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 50px);
  border-bottom: 1px solid var(--borderColor);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .bengoCareer {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .bengoCareer figure {
    order: -1;
  }
  .bengoCareer .elementLeft {
    order: 1;
  }
}
.bengoCareer .elementLeft {
  padding: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft {
    padding: 4rem 3rem 6rem 3rem;
  }
}
.bengoCareer .elementLeft div {
  opacity: 1;
}
.bengoCareer .elementLeft div hgroup h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft div hgroup h3 {
    font-size: 1.5em;
  }
}
.bengoCareer .elementLeft div hgroup h3 span {
  width: 3rem;
  display: inline-block;
}
.bengoCareer .elementLeft div hgroup p {
  font-size: 4.7rem;
  margin-top: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft div hgroup p {
    font-size: 2.2rem;
    white-space: wrap;
  }
}
.bengoCareer .elementLeft div hgroup p sup {
  font-size: 60%;
  top: -0.5em;
}
.bengoCareer .elementLeft div p {
  font-size: 1.6rem;
  width: 46rem;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft div p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.bengoCareer .elementLeft div a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft div a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.bengoCareer .elementLeft div a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .bengoCareer .elementLeft div a:hover {
    color: rgb(40, 40, 45);
  }
  .bengoCareer .elementLeft div a:hover::before {
    transform: scale(1, 1);
  }
}
.bengoCareer .elementLeft div small {
  font-size: 1.2rem;
  margin-top: 6rem;
  color: rgb(107, 107, 110);
  display: block;
}
@media screen and (max-width: 768px) {
  .bengoCareer .elementLeft div small {
    font-size: 1rem;
    margin-top: 3rem;
  }
}
.bengoCareer figure {
  background-color: #F7723E;
  aspect-ratio: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bengoCareer figure {
    aspect-ratio: 13/12;
  }
}
.bengoCareer figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.technology {
  position: relative;
  color: var(--fontColorWhite);
  min-height: calc(100vh - 50px);
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .technology {
    height: 68rem;
    display: block;
  }
}
.technology h2 {
  line-height: 1;
  font-size: 3rem;
  padding: 0 4rem;
  position: static;
  display: flex;
  width: 100%;
  height: 10rem;
  align-items: center;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 768px) {
  .technology h2 {
    padding: 4.3rem 3rem;
    font-size: 2.2rem;
    position: absolute;
  }
}
.technology .secondaryContainer {
  display: flex;
  height: -moz-min-content;
  height: min-content;
  min-height: calc(100vh - 50px - 10rem);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .technology .secondaryContainer {
    align-items: flex-end;
    height: 100%;
  }
}
.technology .secondaryContainer .secondaryContainerLeft {
  padding: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .technology .secondaryContainer .secondaryContainerLeft {
    padding: 0 3rem 6rem 3rem;
  }
}
.technology .secondaryContainer .secondaryContainerLeft p {
  font-size: 4.7rem;
  line-height: 1.5;
  opacity: 0;
  position: relative;
  z-index: 1111;
}
@media screen and (max-width: 768px) {
  .technology .secondaryContainer .secondaryContainerLeft p {
    font-size: 3rem;
  }
}
.technology .secondaryContainer .secondaryContainerLeft > a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid #fff;
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: transparent;
  z-index: 2;
  margin-top: 12.6rem;
}
@media screen and (max-width: 768px) {
  .technology .secondaryContainer .secondaryContainerLeft > a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.technology .secondaryContainer .secondaryContainerLeft > a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .technology .secondaryContainer .secondaryContainerLeft > a:hover {
    color: rgb(40, 40, 45);
  }
  .technology .secondaryContainer .secondaryContainerLeft > a:hover::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .technology .secondaryContainer .secondaryContainerLeft > a {
    margin-top: 19.2rem;
  }
}
.technology picture {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.technology picture img {
  width: 100%;
  position: absolute;
  height: 100%;
  display: block;
  filter: brightness(85%);
}
.technology picture img.show {
  animation: imgScale 1.5s ease-out forwards;
  -o-object-position: center;
     object-position: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 5%;
     object-position: 50% 5%;
  filter: brightness(70%);
}

.venture {
  position: relative;
  color: var(--fontColorWhite);
  min-height: calc(100vh - 50px);
  height: -moz-min-content;
  height: min-content;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .venture {
    height: 68rem;
    display: block;
  }
}
.venture h2 {
  line-height: 1;
  font-size: 3rem;
  padding: 0 4rem;
  position: static;
  display: flex;
  width: 100%;
  height: 10rem;
  align-items: center;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 768px) {
  .venture h2 {
    padding: 4.3rem 3rem;
    font-size: 2.2rem;
    position: absolute;
  }
}
.venture .secondaryContainer {
  display: flex;
  height: -moz-min-content;
  height: min-content;
  min-height: calc(100vh - 50px - 10rem);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer {
    align-items: flex-end;
    height: 100%;
  }
}
.venture .secondaryContainer .secondaryContainerLeft {
  padding: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer .secondaryContainerLeft {
    padding: 0 3rem 6rem 3rem;
  }
}
.venture .secondaryContainer .secondaryContainerLeft p {
  font-size: 4.7rem;
  line-height: 1.5;
  opacity: 0;
  position: relative;
  z-index: 1111;
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer .secondaryContainerLeft p {
    font-size: 3rem;
  }
}
.venture .secondaryContainer .secondaryContainerLeft > a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid #fff;
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: transparent;
  z-index: 2;
  margin-top: 12.6rem;
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer .secondaryContainerLeft > a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.venture .secondaryContainer .secondaryContainerLeft > a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .venture .secondaryContainer .secondaryContainerLeft > a:hover {
    color: rgb(40, 40, 45);
  }
  .venture .secondaryContainer .secondaryContainerLeft > a:hover::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer .secondaryContainerLeft > a {
    margin-top: 19.2rem;
  }
}
.venture picture {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.venture picture img {
  width: 100%;
  position: absolute;
  height: 100%;
  display: block;
  filter: brightness(85%);
}
.venture .secondaryContainer .secondaryContainerLeft > a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid #fff;
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: transparent;
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .venture .secondaryContainer .secondaryContainerLeft > a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.venture .secondaryContainer .secondaryContainerLeft > a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .venture .secondaryContainer .secondaryContainerLeft > a:hover {
    color: rgb(40, 40, 45);
  }
  .venture .secondaryContainer .secondaryContainerLeft > a:hover::before {
    transform: scale(1, 1);
  }
}
.venture .secondaryContainer .secondaryContainerLeft .adopt {
  margin-top: 8rem;
}
.venture .secondaryContainer .secondaryContainerLeft .adopt a {
  position: relative;
  display: block;
  padding-bottom: 1.6rem;
  width: 19.4rem;
  font-size: 1.5rem;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.venture .secondaryContainer .secondaryContainerLeft .adopt a::after {
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 0;
  z-index: 2;
  border-bottom: 1.2px solid rgb(40, 40, 45);
  background-color: rgb(40, 40, 45);
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.55, 1), width 0.3s ease-out;
}
@media (any-hover: hover) {
  .venture .secondaryContainer .secondaryContainerLeft .adopt a:hover::after {
    width: 100%;
    z-index: 4;
  }
  .venture .secondaryContainer .secondaryContainerLeft .adopt a:hover span {
    transform: translateX(1rem);
  }
}
.venture .secondaryContainer .secondaryContainerLeft .adopt a span {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
.venture .secondaryContainer .secondaryContainerLeft .adopt a span img {
  width: 1.1rem;
  margin-right: 1.6rem;
}
.venture .secondaryContainer .secondaryContainerLeft .adopt a:not(:first-child) {
  margin-top: 1rem;
}

.newstp h2 {
  font-size: 3rem;
  padding: 4rem;
}
.newstp .newsListtp .newsListtpContent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  width: 100%;
  z-index: 1;
  border: 1px solid var(--borderColor);
}
.newstp .newsListtp .newsListtpContent article {
  border-right: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  display: block;
  padding: 5rem 4rem;
}
@media (any-hover: hover) {
  .newstp .newsListtp .newsListtpContent article:hover h3 {
    text-decoration-line: underline;
  }
}
.newstp .newsListtp .newsListtpContent article > a {
  pointer-events: none;
}
.newstp .newsListtp .newsListtpContent article time {
  font-size: 1.2rem;
}
.newstp .newsListtp .newsListtpContent article h3 {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 2rem;
}
.newstp .newsListtp .newsListtpContent article .sub {
  display: flex;
  margin-top: 2rem;
  line-height: 1;
  font-size: 1.2rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newstp .newsListtp .newsListtpContent article .sub p {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border: 1px solid black;
  height: 2.5rem;
  display: flex;
  align-items: center;
}
.newstp .newsListtp .newsListtpContent article .sub p:not(:first-child) {
  background-color: #0D64C9;
  color: var(--fontColorWhite);
  border: 0;
}
.newstp .button {
  padding: 4rem 4rem 0 4rem;
  height: 15rem;
  display: block;
  border-bottom: 1px solid var(--borderColor);
}
.newstp .button a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .newstp .button a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.newstp .button a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .newstp .button a:hover {
    color: rgb(40, 40, 45);
  }
  .newstp .button a:hover::before {
    transform: scale(1, 1);
  }
}

.corporateTp {
  display: grid;
  min-height: calc(100vh - 50px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: -moz-min-content;
  height: min-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  .corporateTp {
    display: flex;
    flex-direction: column-reverse;
  }
}
.corporateTp div h2 {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  align-items: center;
  height: 10rem;
  font-size: 3rem;
  padding: 0 4rem;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 768px) {
  .corporateTp div h2 {
    font-size: 2.2rem;
    padding: 4rem 3rem;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}
.corporateTp div .corporateContainer {
  padding: 18rem 4rem 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .corporateTp div .corporateContainer {
    display: flex;
    align-items: center;
    padding: 5rem 3rem 6rem 3rem;
  }
}
.corporateTp div .corporateContainer div p {
  font-size: 4.7rem;
}
@media screen and (max-width: 768px) {
  .corporateTp div .corporateContainer div p {
    font-size: 3rem;
  }
}
.corporateTp div .corporateContainer div p.show {
  animation: secondaryblur 0.5s ease-out forwards;
}
.corporateTp div .corporateContainer div .corporateButton {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .corporateTp div .corporateContainer div .corporateButton {
    margin-top: 3rem;
  }
}
.corporateTp div .corporateContainer div .corporateButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .corporateTp div .corporateContainer div .corporateButton a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .corporateTp div .corporateContainer div .corporateButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.corporateTp div .corporateContainer div .corporateButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .corporateTp div .corporateContainer div .corporateButton a:hover {
    color: rgb(40, 40, 45);
  }
  .corporateTp div .corporateContainer div .corporateButton a:hover::before {
    transform: scale(1, 1);
  }
}
.corporateTp div .corporateContainer div .corporateButton a:nth-child(2) {
  margin-top: 1rem;
}
.corporateTp picture {
  min-height: 100%;
  height: calc(100vh - 50px);
  display: block;
}
@media screen and (max-width: 768px) {
  .corporateTp picture {
    height: 100%;
  }
}
.corporateTp picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.lang {
  font-size: 13px;
  align-items: center;
  display: flex;
  line-height: 1.2;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .lang {
    display: none;
  }
}
.lang a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .lang a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.lang > span {
  overflow: hidden;
  width: 1px;
  height: 12px;
  background-color: rgb(40, 40, 45);
  transform: rotate(20deg);
  transform-origin: top;
  margin: 0 6px 0 8px;
  opacity: 0;
  position: relative;
  right: 0;
  top: 0;
  animation: fadeInFromTopRight 0.8s ease-out forwards;
  animation-delay: 1.2s;
}
.lang a {
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.lang a span {
  opacity: 0;
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 1.3s;
  display: block;
}
.lang a:last-child span {
  opacity: 0;
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 1.3s;
  display: block;
}

.serviceList article,
.mediaBusinessList article,
.CareerBusinessList article {
  opacity: 0;
}

.elementTop.show::after {
  animation: expandBorder 1s ease-out forwards;
  opacity: 1;
}
.elementTop.show .elementTopLeft {
  animation: serviceStyleSlideUp 0.9s ease-out forwards;
}
.elementTop.show .elementTopRight p {
  animation: serviceStyleLeft 0.9s ease-out forwards;
}
.elementTop.show .elementTopRight p::after {
  animation: expandBorder 1s ease-out forwards;
  opacity: 1;
}
.elementTop.show .elementTopRight .elementTopRightBottom {
  animation: transparentStyle 0.7s ease-out forwards;
  animation-delay: 1s;
}
.elementTop.show .elementTopRight::after {
  animation: borderAnimation 1s ease-out forwards;
  opacity: 1;
}

.secondaryContainerLeft.show p {
  animation: secondaryblur 1s ease-out forwards;
}

.servicePage.show::after {
  animation: expandBorder 1s ease-out forwards;
  opacity: 1;
}

.post-categories li {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border: 1px solid black;
  height: 2.5rem;
  display: inline-block;
  place-content: center;
}
@media screen and (min-width: 769px) {
  .post-categories li {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .post-categories li {
    margin-top: 3rem;
  }
}
.post-categories li:nth-child(3) {
  background-color: #0D64C9;
  color: var(--fontColorWhite);
  border: 0;
}

footer {
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: 23.2rem 1fr 1fr 1fr;
  color: var(--fontColorWhite);
  background-color: rgb(40, 40, 45);
  z-index: 2;
  position: relative;
}
footer a {
  background-image: linear-gradient(90deg, #fff, #fff);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  footer a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
footer .home {
  padding: 4rem;
  display: flex;
  border-bottom: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
  grid-column: span 2/span 2;
}
@media screen and (min-width: 769px) {
  footer .home {
    grid-column-start: 2;
  }
}
@media screen and (max-width: 768px) {
  footer .home {
    padding: 4rem 3rem;
  }
}
footer .manyInfomation {
  padding: 4rem 4rem 0 4rem;
  display: flex;
  -moz-column-gap: 12.5rem;
       column-gap: 12.5rem;
  border-right: 1px solid var(--borderColor);
  grid-column: span 2/span 2;
}
@media screen and (min-width: 769px) {
  footer .manyInfomation {
    grid-row: span 3/span 3;
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 768px) {
  footer .manyInfomation {
    display: block;
    padding: 0;
  }
}
footer .manyInfomation .block {
  display: block;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block:first-of-type dl {
    grid-column: span 2/span 2;
  }
}
footer .manyInfomation .block dl {
  padding: 0;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block dl {
    padding: 4rem 3rem;
    border-bottom: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
  }
}
footer .manyInfomation .block dl dt a {
  line-height: 1.4;
}
footer .manyInfomation .block dl dd {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block dl dd {
    margin-top: 2.5rem;
  }
}
footer .manyInfomation .block dl dd ul {
  display: block;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block dl dd ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
footer .manyInfomation .block dl dd ul li {
  margin-top: 1rem;
}
footer .manyInfomation .block dl dd ul li a {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
footer .manyInfomation .block dl dd ul li a img {
  width: 1rem;
  margin-left: 0.6rem;
}
footer .manyInfomation .block dl dd ul li .haveImg {
  display: flex;
}
footer .manyInfomation .block dl:nth-of-type(2) {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block dl:nth-of-type(2) {
    margin-top: 0;
  }
}
footer .manyInfomation .block p {
  margin-top: 6rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block p:nth-of-type(1) {
    border-right: 1px solid var(--borderColor);
  }
}
@media screen and (max-width: 768px) {
  footer .manyInfomation .block p {
    padding: 4rem 3rem;
    margin-top: 0;
    border-bottom: 1px solid var(--borderColor);
  }
}
footer .contact {
  text-align: left;
  display: flex;
  padding: 4rem;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (min-width: 769px) {
  footer .contact {
    grid-row: span 1/span 1;
    grid-row-start: 1;
    grid-column-start: 4;
  }
}
@media screen and (max-width: 768px) {
  footer .contact {
    padding: 3rem 4rem;
    grid-column: span 2/span 2;
    display: flex;
    justify-content: center;
  }
}
footer .about {
  padding: 6rem 4rem;
  font-size: 1.1rem;
  display: block;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (min-width: 769px) {
  footer .about {
    grid-column: span 1/span 1;
    grid-row: span 1/span 1;
    grid-row-start: 2;
    grid-column-start: 4;
  }
}
@media screen and (max-width: 768px) {
  footer .about {
    padding: 4rem;
    border-right: 1px solid var(--borderColor);
  }
}
footer .about li a {
  line-height: 1.4;
}
footer .about li:not(:first-of-type) {
  margin-top: 1rem;
}
footer .policy {
  padding: 4rem;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (min-width: 769px) {
  footer .policy {
    grid-column: span 1/span 1;
    grid-row: span 1/span 1;
    grid-row-start: 3;
    grid-column-start: 4;
  }
}
@media screen and (max-width: 768px) {
  footer .policy {
    padding: 4rem 3rem;
  }
}
footer .policy li a {
  line-height: 1.4;
}
footer .policy li:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  footer .policy li:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
footer .ben {
  display: flex;
  align-items: flex-end;
  width: 23.2rem;
  border-right: 1px solid var(--borderColor);
}
@media screen and (min-width: 769px) {
  footer .ben {
    grid-column: span 1/span 1;
    grid-row: span 4/span 4;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .ben {
    width: 100%;
  }
}
footer .ben img {
  width: 16.7rem;
}
@media screen and (max-width: 768px) {
  footer .ben img {
    width: 10rem;
  }
}
footer .dotCom {
  padding: 4rem;
}
footer .dotCom img {
  width: 14.6rem;
}
footer .dotCom p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 1.8rem;
}
footer .dotCom small {
  margin-top: 2rem;
  font-weight: 400;
  display: inline-block;
}

footer ul li {
  display: flex;
}

footer.active {
  animation: mainSlide 0.5s ease-out forwards;
}

@media screen and (min-width: 769px) {
  .uSp {
    display: none;
  }
  .uSp.show {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .uPc {
    display: none;
  }
  .uPc.show {
    display: none;
  }
}
.hammenu {
  padding-top: 75px;
  height: 100vh;
  width: 72rem;
  transition-duration: 0.5s;
  background-color: var(--fontColorWhite);
  border-left: 1px solid var(--borderColor);
  right: 0;
  position: fixed;
  transform: translateX(100%);
  z-index: 99;
  top: 0;
  overflow: visible;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .hammenu {
    width: 100%;
  }
}
.hammenu .menuTop {
  position: relative;
  display: flex;
  align-items: center;
  height: 6rem;
  justify-content: space-between;
  padding: 0 4rem;
}
.hammenu .menuTop p {
  font-size: 2.4rem;
}
.hammenu .menuTop p a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .hammenu .menuTop p a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.hammenu .menuTop .lang::after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: calc(100vh - 6rem - 75px);
}
.hammenu .menuBottom .menuBottomLeft {
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  overscroll-behavior: contain;
}
.hammenu .menuBottom .menuBottomLeft a {
  pointer-events: none;
}
.hammenu .menuBottom .menuBottomLeft dl {
  position: relative;
}
.hammenu .menuBottom .menuBottomLeft dl dt {
  font-size: 2.4rem;
  height: 6.5rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 0 4rem;
}
.hammenu .menuBottom .menuBottomLeft dl dt span {
  font-weight: 100;
}
.hammenu .menuBottom .menuBottomLeft dl dt span:nth-of-type(2) {
  height: 1px;
  position: absolute;
  width: 1.3rem;
  right: 4rem;
  top: 3rem;
  background-color: var(--buttonColorBlack);
}
.hammenu .menuBottom .menuBottomLeft dl dt span:nth-of-type(3) {
  height: 1px;
  position: absolute;
  width: 1.3rem;
  right: 4rem;
  top: 3rem;
  background-color: var(--buttonColorBlack);
  transform: rotate(90deg);
}
.hammenu .menuBottom .menuBottomLeft dl::after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom .menuBottomLeft div {
  display: flex;
  height: 6.5rem;
  align-items: center;
  padding: 0 4rem;
  position: relative;
}
.hammenu .menuBottom .menuBottomLeft div::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid var(--borderColor);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.hammenu .menuBottom .menuBottomLeft div a {
  font-size: 2.4rem;
}
.hammenu .menuBottom .menuBottomLeft div a span {
  display: block;
  line-height: 1.1;
}
.hammenu .menuBottom .menuBottomRight {
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  overscroll-behavior: contain;
  overflow: auto;
  height: 100%;
  border-left: 1px solid var(--borderColor);
}
.hammenu .menuBottom .menuBottomRight .menuContact {
  display: flex;
  height: 6.5rem;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding: 0 4rem;
}
.hammenu .menuBottom .menuBottomRight .menuContact a {
  font-size: 2.4rem;
}
.hammenu .menuBottom .menuBottomRight .menuContact::after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom .menuBottomRight .pressKit {
  padding: 3rem 4rem;
  flex-shrink: 0;
  position: relative;
}
.hammenu .menuBottom .menuBottomRight .pressKit:after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom .menuBottomRight .pressKit ul {
  font-size: 1.1rem;
}
.hammenu .menuBottom .menuBottomRight .pressKit ul li {
  margin-top: 1rem;
}
.hammenu .menuBottom .menuBottomRight .pressKit ul li a {
  line-height: 1.6;
}
.hammenu .menuBottom .menuBottomRight .access {
  padding: 3rem 4rem;
  flex-shrink: 0;
  position: relative;
}
.hammenu .menuBottom .menuBottomRight .access::after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom .menuBottomRight .access dt {
  display: block;
  font-size: 1.5rem;
}
.hammenu .menuBottom .menuBottomRight .access dd {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}
.hammenu .menuBottom .menuBottomRight .access dd a {
  display: inline-flex;
  position: relative;
  font-size: 1.4rem;
  margin-top: 1rem;
  padding-left: 2rem;
  align-items: center;
  line-height: 1.2;
}
.hammenu .menuBottom .menuBottomRight .access dd a img {
  padding-right: 0.4rem;
  position: absolute;
  width: 1.6rem;
  left: 0;
  display: block;
  z-index: 2;
}
.hammenu .menuBottom .menuBottomRight .policy {
  padding: 4rem;
  font-size: 1.2rem;
  font-weight: 400;
  border-bottom: 1px solid var(--borderColor);
}
.hammenu .menuBottom .menuBottomRight .policy::after {
  bottom: 0px;
  content: "";
  display: block;
  height: 1px;
  left: 0px;
  position: absolute;
  transform-origin: left center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230/var(--tw-bg-opacity, 1));
}
.hammenu .menuBottom .menuBottomRight .policy li a {
  line-height: 1.4;
}
.hammenu .menuBottom .menuBottomRight .policy li:not(:first-of-type) {
  margin-top: 1rem;
}
.hammenu .menuBottom .menuBottomRight .ben {
  flex-shrink: 1;
  height: 100%;
  position: relative;
}
.hammenu .menuBottom .menuBottomRight .ben img {
  max-width: none;
  width: auto;
  height: 100%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.hammenu.active {
  transition-duration: 0.5s;
  transform: translateX(0);
  visibility: visible;
}

body {
  padding-top: 6rem;
}

main > h2 {
  font-size: 2rem;
  padding: 1.5rem 3rem;
  height: 7.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
main > h2::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  width: 100%;
  background-color: rgb(230, 230, 230);
}
main .mainWrapper .mainWrapperLeft {
  display: none;
}
main .mainWrapper .mainWrapperRight article {
  font-size: 1.5rem;
  padding: 6rem 0;
  line-height: 1.7;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle {
  padding: 0 3rem;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle h1 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle p {
  margin-top: 2rem;
  font-size: 1.2rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle p a {
  white-space: nowrap;
  padding: 0.2rem 0.8rem;
  border: 1px solid black;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle p a:nth-of-type(2) {
  background: #0D64C9;
  color: white;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRiContent {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
  margin: 6rem 3rem 0 3rem;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRiContent h3 {
  font-weight: bolder;
}
main .mainWrapper .mainWrapperRight article .mainWrapperRiContent img {
  margin: 3rem 0;
  width: 100%;
}
main .mainWrapper .mainWrapperRight .backToList {
  padding-left: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight .backToList > a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  word-break: break-all;
  font-size: 1.6rem;
  gap: 1rem;
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media (any-hover: hover) {
  main .mainWrapper .mainWrapperRight .backToList > a:hover {
    background-position: 100% 100%;
    background-size: 0 1px;
  }
}
main .mainWrapper .mainWrapperRight .backToList .SNS {
  display: flex;
  border-right: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight .backToList .SNS li {
  border-left: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight .backToList .SNS li a {
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color, background-color, opacity, transform, filter;
  display: grid;
  place-content: center;
  width: 6.7rem;
  height: 6.7rem;
}
@media (any-hover: hover) {
  main .mainWrapper .mainWrapperRight .backToList .SNS li a:hover {
    background-color: rgb(40, 40, 45);
    transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color, background-color, opacity, transform, filter;
  }
  main .mainWrapper .mainWrapperRight .backToList .SNS li a:hover img {
    filter: brightness(0) invert(1);
  }
}
main .mainWrapper .mainWrapperRight .backToList .SNS li a img {
  height: 2rem;
  width: auto;
}
main .mainWrapper .mainWrapperRight dl {
  font-size: 1.5rem;
  padding: 6rem 3rem;
  border-top: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight dl dd {
  line-height: 1.7;
  margin-top: 2rem;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast {
  border-top: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li {
  display: grid;
  border-bottom: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a {
  position: relative;
  display: block;
  padding: 4rem 3rem;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  z-index: 2;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(calc(-100% - 1px));
  transition-property: transform;
  width: 100%;
  z-index: -1;
  background-color: rgb(40, 40, 45);
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a div p {
  font-size: 2.5rem;
  padding-right: 2rem;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a div img {
  transition: filter 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 1.8rem;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a > p {
  margin-top: 1rem;
  font-size: 1.2rem;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a:hover {
  color: white;
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a:hover::before {
  transform: translateX(0);
}
main .mainWrapper .mainWrapperRight .mainWrapperRightLast li a:hover img {
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 769px) {
  body {
    padding-top: 75px;
  }
  main > h2 {
    font-size: 2.8rem;
    padding: 0 4rem;
  }
  main .mainWrapper {
    display: flex;
  }
  main .mainWrapper .mainWrapperLeft {
    display: block;
    width: 23.2rem;
    padding-left: 4rem;
    padding-right: 0;
    position: relative;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
    position: sticky;
    top: 75px;
    left: 0;
    overflow: auto;
    font-size: 1.2rem;
    scrollbar-width: none;
    height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    gap: 6rem;
    justify-content: space-between;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > div {
    padding-top: 3rem;
    padding-bottom: 10rem;
    font-size: 2.2rem;
    display: block;
    position: relative;
    align-items: flex-start;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title {
    padding: 0 4rem 4rem 0;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title p {
    display: flex;
    flex-direction: column;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title p:first-of-type {
    font-weight: 500;
    font-size: 1.8rem;
    overflow: hidden;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title p:nth-of-type(2) {
    width: -moz-max-content;
    width: max-content;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title p a {
    margin-top: 2rem;
    overflow: hidden;
    font-size: 1.2rem;
    padding: 0.2rem 0.8rem;
    border: 1px solid black;
  }
  main .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .title p a:nth-of-type(2) {
    background: #0D64C9;
    color: white;
  }
  main .mainWrapper .mainWrapperLeft::after {
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    transform-origin: left;
    height: 100%;
    background-color: rgb(230, 230, 230);
    bottom: auto;
    left: auto;
    right: 0;
    top: 0;
    transform-origin: top;
    width: 1px;
  }
  main .mainWrapper .mainWrapperRight {
    width: calc(100% - 23.2rem);
  }
  main .mainWrapper .mainWrapperRight article {
    padding: 6rem 15.8rem 8rem 15.8rem;
  }
  main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle {
    display: block;
    align-items: flex-start;
    gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
  main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle h1 {
    font-size: 3rem;
    width: 65rem;
    flex-shrink: 0;
  }
  main .mainWrapper .mainWrapperRight article .mainWrapperRightTitle p {
    margin-top: 1rem;
  }
  main .mainWrapper .mainWrapperRight article .mainWrapperRiContent {
    margin-top: 6rem;
  }
  main .mainWrapper .mainWrapperRight .backToList {
    padding-left: 15.8rem;
    padding-right: 15.8rem;
  }
  main .mainWrapper dl {
    padding: 6rem 15.8rem;
  }
  main .mainWrapper dl dd {
    margin-top: 3rem;
  }
  main .mainWrapper .mainWrapperRightLast {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    opacity: 1;
  }
  main .mainWrapper .mainWrapperRightLast li a {
    position: relative;
    height: 24.5rem;
    display: block;
    padding: 4rem;
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  main .mainWrapper .mainWrapperRightLast li a:hover {
    color: rgb(255, 255, 255);
  }
  main .mainWrapper .mainWrapperRightLast li a:hover::before {
    transform: translateX(0);
  }
  main .mainWrapper .mainWrapperRightLast li a:hover div img {
    filter: brightness(0) invert(1);
  }
}
@media screen and (min-width: 769px) {
  main .mainWrapper .mainWrapperRightLast li a > p {
    width: 100%;
    margin-top: 0;
    position: absolute;
    left: 4rem;
    bottom: 4rem;
  }
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.service .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.service .mainWrapper .mainWrapperRight article {
  padding: 0;
}
.service .mainWrapper .mainWrapperRight article picture {
  height: 61.5384615385vw;
  display: block;
}
.service .mainWrapper .mainWrapperRight article picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer {
  padding: 6rem 3rem;
  border-top: 1px solid var(--borderColor);
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService h2,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia h2,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer h2 {
  font-size: 3rem;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl {
  margin-top: 3rem;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dt,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dt,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dt {
  font-size: 1.8rem;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd {
  width: 100%;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul {
  row-gap: 7rem;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  display: grid;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a {
  display: block;
}
@media (any-hover: hover) {
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a:hover div img,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a:hover div img,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a:hover div img {
    filter: brightness(0) invert(100%);
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a:hover div .hoverColor,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a:hover div .hoverColor,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a:hover div .hoverColor {
    opacity: 1;
  }
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a > div,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a > div,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a > div {
  position: relative;
  display: grid;
  height: 22rem;
  place-content: center;
  border: 1px solid var(--borderColor);
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a > div img,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a > div img,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a > div img {
  width: 27.4rem;
  transition: filter 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  display: block;
  transform: scale(0.8);
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a > div .hoverColor,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a > div .hoverColor,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a > div .hoverColor {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: filter 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(1),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(1),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(1) {
  font-size: 1.8rem;
  margin-top: 2rem;
  font-weight: 500;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(2),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(2),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(2) {
  line-height: 1.7;
  margin-top: 2rem;
  font-size: 1.5rem;
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(3),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(3),
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(3) {
  font-size: 1.2rem;
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(3),
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(3),
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(3) {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(3)::before,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(3)::before,
.service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(3)::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(3):hover,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(3):hover,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(3):hover {
    color: rgb(40, 40, 45);
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:nth-of-type(3):hover::before,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:nth-of-type(3):hover::before,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:nth-of-type(3):hover::before {
    transform: scale(1, 1);
  }
}
.service .mainWrapper .mainWrapperRight article .techResearch {
  padding-top: 6rem;
  row-gap: 4rem;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--borderColor);
}
.service .mainWrapper .mainWrapperRight article .techResearch h2 {
  font-size: 1.8rem;
  font-weight: 400;
  order: 1;
  width: 100%;
  padding: 0 3rem;
}
.service .mainWrapper .mainWrapperRight article .techResearch p {
  width: 100%;
  order: 2;
  font-size: 3.6rem;
  padding: 0rem 3rem;
}
.service .mainWrapper .mainWrapperRight article .techResearch > div {
  order: 3;
  width: 100%;
}
.service .mainWrapper .mainWrapperRight article .techResearch > div picture {
  display: block;
}
.service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton {
  padding: 0rem 3rem 6rem 3rem;
}
.service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a:hover {
    color: rgb(40, 40, 45);
  }
  .service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a:hover::before {
    transform: scale(1, 1);
  }
}
.service .mainWrapper .mainWrapperRight article .interview {
  border-top: 1px solid var(--borderColor);
}
.service .mainWrapper .mainWrapperRight article .interview h2 {
  font-size: 1.8rem;
  padding: 4rem 3rem;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer {
  padding: 0rem 3rem;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner {
  border-left: 1px solid var(--borderColor);
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article {
  border-right: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a {
  width: 100%;
  height: 100%;
  display: block;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a figure {
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a .interviewText {
  padding: 3rem;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a .interviewText h3 {
  font-size: 1.5rem;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a .interviewText ul {
  font-size: 1.1rem;
  color: rgba(40, 40, 45, 0.5);
  row-gap: 0.4rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner article a .interviewText p {
  font-size: 1rem;
  padding: 0.6rem;
  display: inline-block;
  margin-top: 1.4rem;
  color: white;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewButton {
  display: flex;
  justify-content: flex-start;
  margin-top: 3rem;
  padding: 0rem 3rem 6rem 3rem;
}
.service .mainWrapper .mainWrapperRight article .interview .interviewButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service .mainWrapper .mainWrapperRight article .interview .interviewButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.service .mainWrapper .mainWrapperRight article .interview .interviewButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .service .mainWrapper .mainWrapperRight article .interview .interviewButton a:hover {
    color: rgb(40, 40, 45);
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewButton a:hover::before {
    transform: scale(1, 1);
  }
}
.service .mainWrapper .mainWrapperRight article .blue {
  background-color: #0D64C9;
}
.service .mainWrapper .mainWrapperRight article .orange {
  background-color: #F7723E;
}
.service .mainWrapper .mainWrapperRight article .skyBlue {
  background-color: #00A6E3;
}
.service .mainWrapper .mainWrapperRight article .black {
  background-color: #111111;
}
.service .mainWrapper .mainWrapperRight article .purple {
  background-color: #25295D;
}

main .mainWrapper .mainWrapperRight dl {
  border: none;
  padding: 0;
  margin-top: 3rem;
}

@media screen and (min-width: 769px) {
  .service .mainWrapper .mainWrapperRight article picture {
    height: auto;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer {
    padding: 7rem 15.6rem 6rem 4rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService h2,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia h2,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer h2 {
    font-size: 4.5rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl {
    display: flex;
    margin-top: 6rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dt,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dt,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dt {
    font-size: 2.2rem;
    width: 23.4rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd {
    margin-top: 0;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    row-gap: 6rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a > div,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a > div,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a > div {
    height: auto;
    aspect-ratio: 1/1;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:first-of-type,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:first-of-type,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:first-of-type {
    font-size: 1.7rem;
  }
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightService dl dd ul li a p:last-of-type,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightMedia dl dd ul li a p:last-of-type,
  .service .mainWrapper .mainWrapperRight article .mainWrapperRightCareer dl dd ul li a p:last-of-type {
    width: 19.4rem;
    height: 4.4rem;
  }
  .service .mainWrapper .mainWrapperRight article .techResearch {
    align-items: flex-start;
    row-gap: 6rem;
    padding: 6rem 4rem;
  }
  .service .mainWrapper .mainWrapperRight article .techResearch > p {
    font-size: 4.5rem;
    padding-left: 0;
    padding-right: 0;
    order: 1;
  }
  .service .mainWrapper .mainWrapperRight article .techResearch h2 {
    font-size: 2.2rem;
    width: 23.4rem;
    flex-shrink: 0;
    order: 2;
    padding-left: 0;
    padding-right: 0;
  }
  .service .mainWrapper .mainWrapperRight article .techResearch > div {
    width: calc(100% - 23.4rem);
  }
  .service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .service .mainWrapper .mainWrapperRight article .techResearch > div .serviceButton a {
    height: 4.4rem;
    width: 19.4rem;
    margin-top: 3rem;
  }
  .service .mainWrapper .mainWrapperRight article .interview h2 {
    font-size: 2.2rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewContainer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-top: 1px solid var(--borderColor);
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner .interviewText h3 {
    font-size: 1.8rem;
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewContainer .interviewContainerInner .interviewText p {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewButton {
    padding-left: 4rem;
    padding-right: 4rem;
    display: block;
    margin-top: 4rem;
  }
  .service .mainWrapper .mainWrapperRight article .interview .interviewButton a {
    font-size: 1.4rem;
    width: 100%;
    height: 4.4rem;
    margin-top: 3rem;
  }
}
.tech-research .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.tech-research .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}

.tech-research .mainWrapper .mainWrapperRight .mainWrapperRightMessage {
  padding: 6rem 4rem 8rem 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .mainWrapperRightMessage h2 {
  font-size: 2.2rem;
}
.tech-research .mainWrapper .mainWrapperRight .mainWrapperRightMessage p {
  margin-top: 4rem;
  font-size: 5.8rem;
}
.tech-research .mainWrapper .mainWrapperRight .mainWrapperRightMessage picture {
  margin-top: 4rem;
  display: block;
  max-width: none;
  width: 73rem;
}
.tech-research .mainWrapper .mainWrapperRight .mainWrapperRightMessage picture img {
  height: auto;
  width: 100%;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative {
  position: relative;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative div {
  position: absolute;
  left: 0;
  bottom: 7rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative div h2 {
  font-size: 6.2rem;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative div p {
  margin-top: 4rem;
  font-size: 2rem;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative picture {
  aspect-ratio: auto;
  display: block;
}
.tech-research .mainWrapper .mainWrapperRight .Headings .relative picture img {
  height: auto;
  width: 100%;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labTop {
  padding: 6rem 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labTop h3 {
  font-size: 2.2rem;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labTop p {
  margin-top: 6rem;
  width: 90rem;
  font-size: 4.5rem;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul {
  height: auto;
  border: 1px solid var(--borderColor);
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  display: flex;
  z-index: 1;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li {
  position: relative;
  width: 33.333333% !important;
  height: auto;
  border-right: 1px solid var(--borderColor);
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a {
  display: block;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a figure {
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
  width: 100%;
  background-color: rgb(243, 244, 246);
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a figure img {
  height: 100%;
  width: 100%;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl {
  padding: 2rem 3rem 10rem 3rem;
  border-top: 1px solid var(--borderColor);
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dt {
  font-size: 1.7rem;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd {
  margin-top: 1.6em;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:first-of-type {
  font-size: 1.5rem;
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type:hover {
    color: rgb(40, 40, 45);
  }
  .tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type:hover::before {
    transform: scale(1, 1);
  }
}
.tech-research .mainWrapper .mainWrapperRight .lab .labBottom ul li a dl dd p:last-of-type img {
  position: absolute;
  right: 2.4rem;
  width: 1rem;
  top: 1.6rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationTop {
  padding: 6rem 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationTop h3 {
  font-size: 1.8rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationTop p:first-of-type {
  font-size: 4.3rem;
  width: 95rem;
  margin-top: 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationTop p:last-of-type {
  font-size: 2rem;
  width: 90rem;
  margin-top: 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom {
  border-top: 1px solid var(--borderColor);
  display: grid;
  height: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom article {
  padding: 0;
  height: auto;
  border-right: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom article a {
  padding: 5rem 4rem;
  display: block;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom article a p:first-of-type {
  font-size: 1.2rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom article a p:last-of-type {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid black;
  font-size: 1.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationBottom article a h4 {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 2rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton {
  display: block;
  padding: 4rem 4rem 6rem 4rem;
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton a:hover {
    color: rgb(40, 40, 45);
  }
  .tech-research .mainWrapper .mainWrapperRight .investigation .investigationButton a:hover::before {
    transform: scale(1, 1);
  }
}
.tech-research .mainWrapper .mainWrapperRight .techLast {
  display: block;
}
.tech-research .mainWrapper .mainWrapperRight .techLast img {
  height: auto;
  width: 100%;
}

.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.interview .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.interview .mainWrapperRight .mySwiperInterview {
  border-bottom: 1px solid var(--borderColor);
  padding: 4rem 0rem 2rem 0;
  height: auto;
}
.interview .mainWrapperRight .mySwiperInterview > h2 {
  font-size: 1.8rem;
  display: block;
  position: absolute;
  left: 4rem;
  top: 4rem;
  z-index: 2;
}
.interview .mainWrapperRight .mySwiperInterview article {
  width: 1057px;
  padding: 0;
  display: block;
}
.interview .mainWrapperRight .mySwiperInterview article a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
.interview .mainWrapperRight .mySwiperInterview article a figure {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background-color: white;
}
.interview .mainWrapperRight .mySwiperInterview article a figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText {
  flex-shrink: 0;
  padding-bottom: 0;
  width: 39.4rem;
  padding-top: 0;
  padding-right: 4rem;
  padding-left: 0;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText h2 {
  font-size: 2.4rem;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText ul {
  color: rgba(40, 40, 45, 0.5);
  font-size: 1.1rem;
  row-gap: 0.4rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText div {
  display: flex;
  gap: 0.5em;
  margin-top: 2rem;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText div p {
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  display: inline-block;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText div p:first-of-type {
  border: 1px solid black;
}
.interview .mainWrapperRight .mySwiperInterview article a .interviewText div p:last-of-type {
  background-color: #0D64C9;
  color: white;
}
.interview .mainWrapperRight .mySwiperInterview .pageButton {
  display: flex;
  position: absolute;
  padding: 0;
  justify-content: flex-start;
  left: 4rem;
  bottom: 4rem;
  z-index: 2;
  width: 11rem;
}
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-next,
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-prev {
  height: 4.4rem;
  width: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  border: 1px solid black;
}
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-next::after,
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-prev::after {
  content: "";
}
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-next img,
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-prev img {
  width: 0.8rem;
  margin-left: auto;
  margin-right: auto;
}
.interview .mainWrapperRight .mySwiperInterview .pageButton .swiper-button-next img {
  transform: rotate(180deg);
}
.interview .mainWrapperRight .interviewNews {
  padding: 8rem 4rem;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer {
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 4rem;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article {
  padding: 0;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a {
  width: 100%;
  height: 100%;
  display: block;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: white;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a h2 {
  line-height: 1.7;
  font-size: 1.6rem;
  margin-top: 2rem;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a ul {
  color: rgba(40, 40, 45, 0.5);
  font-size: 1.1rem;
  row-gap: 0.4rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a .interviewNewsOther {
  gap: 0.5rem;
  margin-top: 2rem;
  display: flex;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a .interviewNewsOther p {
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  display: inline-block;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a .interviewNewsOther p:first-of-type {
  border: 1px solid black;
}
.interview .mainWrapperRight .interviewNews .interviewNewsContainer article a .interviewNewsOther p:last-of-type {
  background-color: #F7723E;
  color: white;
}

.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.corporate .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.corporate .mainWrapperRight > picture {
  display: block;
  height: auto;
}
.corporate .mainWrapperRight > picture img {
  width: 100%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
}
.corporate .mainWrapperRight .vision,
.corporate .mainWrapperRight .mission {
  display: flex;
  padding: 7rem 4rem 6rem 4rem;
  border-bottom: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .vision h2,
.corporate .mainWrapperRight .mission h2 {
  width: 23.4rem;
  font-size: 2.2rem;
}
.corporate .mainWrapperRight .vision p,
.corporate .mainWrapperRight .mission p {
  font-size: 4.8rem;
  margin-top: 0;
}
.corporate .mainWrapperRight .ourService {
  border-top: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .ourService h2 {
  font-size: 2.2rem;
  padding: 6rem 4rem;
}
.corporate .mainWrapperRight .ourService ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.corporate .mainWrapperRight .ourService ul li {
  border-top: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .ourService ul li a {
  position: relative;
  display: block;
}
.corporate .mainWrapperRight .ourService ul li a > div {
  display: flex;
  aspect-ratio: 1/1;
  position: relative;
  justify-content: center;
  align-items: center;
}
.corporate .mainWrapperRight .ourService ul li a > div img {
  z-index: 2;
  position: relative;
  width: 74.4565217391%;
  display: block;
}
.corporate .mainWrapperRight .ourService ul li a > div .ourServiceHover {
  background-color: #0D64C9;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.corporate .mainWrapperRight .ourService ul li a p {
  padding: 2.5rem 2rem 4.5rem 2rem;
  line-height: 1.6;
  font-size: 1.3rem;
  border-top: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .ourService ul li a:hover img {
  filter: brightness(0) invert(100%);
}
.corporate .mainWrapperRight .ourService ul li a:hover .ourServiceHover {
  opacity: 1;
}
.corporate .mainWrapperRight .ourService .ourServiceButton {
  padding: 4rem 3rem 6rem 3rem;
  border-top: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .ourService .ourServiceButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  width: 100%;
  height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .corporate .mainWrapperRight .ourService .ourServiceButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.corporate .mainWrapperRight .ourService .ourServiceButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .corporate .mainWrapperRight .ourService .ourServiceButton a:hover {
    color: rgb(40, 40, 45);
  }
  .corporate .mainWrapperRight .ourService .ourServiceButton a:hover::before {
    transform: scale(1, 1);
  }
}
.corporate .mainWrapperRight .ourOffice {
  padding-bottom: 6rem;
}
.corporate .mainWrapperRight .ourOffice h2 {
  font-size: 2.2rem;
  padding: 4rem;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.corporate .mainWrapperRight .ourOffice .mySwiperOffice ul li {
  width: 93.2rem;
}
.corporate .mainWrapperRight .ourOffice .mySwiperOffice ul li figure picture img {
  height: auto;
  width: 100%;
}
.corporate .mainWrapperRight .ourOffice .mySwiperOfficeButton {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-left: 4rem;
  padding-right: 4rem;
}
.corporate .mainWrapperRight .ourOffice .mySwiperOfficeButton .swiper-scrollbar {
  width: 21rem;
  height: 1px;
  background-color: var(--borderColor);
}
.corporate .mainWrapperRight .ourOffice .mySwiperOfficeButton .swiper-scrollbar > div {
  width: 14.28571%;
  height: 100%;
  display: block;
  background-color: black;
}
.corporate .mainWrapperRight .ourOffice .mySwiperOfficeButton .pageButton .swiper-button-next::after,
.corporate .mainWrapperRight .ourOffice .mySwiperOfficeButton .pageButton .swiper-button-prev::after {
  content: "";
}
.corporate .mainWrapperRight .CompanyInfo {
  display: flex;
  line-height: 1.8;
  padding: 6rem 15rem 6rem 4rem;
  border-top: 1px solid var(--borderColor);
  justify-content: space-between;
}
.corporate .mainWrapperRight .CompanyInfo h2 {
  flex-shrink: 0;
  font-size: 2.2rem;
}
.corporate .mainWrapperRight .CompanyInfo dl {
  width: 78.5rem;
  font-size: 1.5rem;
  margin-top: 0;
}
.corporate .mainWrapperRight .CompanyInfo dl > div {
  display: flex;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dt {
  width: 23rem;
  padding-right: 2rem;
  flex-shrink: 0;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd {
  width: 100%;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd > div {
  gap: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd > div a {
  margin-top: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd > div a img {
  width: 1.6rem;
  display: block;
  margin-right: 0.4rem;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd ul {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 2rem;
}
.corporate .mainWrapperRight .CompanyInfo dl > div dd ul li img {
  width: 100%;
  height: auto;
}

.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
  white-space: nowrap;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .plus {
  opacity: 1;
  width: auto;
  margin-top: 4rem;
  position: relative;
  top: 0;
  right: 0;
  margin-right: 4rem;
  padding: 0;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .plus select {
  padding: 1.2rem 1rem;
  font-size: 1.2rem;
  border: 1px solid black;
  width: 100%;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .plus span {
  width: 0.9rem;
  height: 1px;
  display: block;
  top: 50%;
  position: absolute;
  right: 1.6rem;
  background-color: black;
}
.news .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer .plus span::after {
  content: "";
  width: 0.9rem;
  height: 1px;
  display: block;
  top: 50%;
  position: absolute;
  background-color: black;
  transform: rotate(90deg);
}

.news .mainWrapper .mainWrapperRight .newsList {
  border-top: 1px solid var(--borderColor);
  padding: 8rem 4rem;
  margin-top: 0;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer {
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 4rem;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article {
  padding: 0;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a {
  display: block;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a > p {
  font-size: 1.2rem;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a figure {
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--borderColor);
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a figure img {
  width: 100%;
  height: 100%;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a h2 {
  line-height: 1.7;
  font-size: 1.5rem;
  margin-top: 2rem;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a > div {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.2rem;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a > div p {
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a > div p:first-of-type {
  border: 1px solid black;
}
.news .mainWrapper .mainWrapperRight .newsList .newsListContainer article a > div p:last-of-type {
  background: #0D64C9;
  color: white;
}
.news .mainWrapper .mainWrapperRight .newsList .otherNews {
  font-size: 1.3rem;
  gap: 0.4rem;
  justify-content: flex-end;
  align-items: baseline;
  display: flex;
  margin-top: 6rem;
}
.news .mainWrapper .mainWrapperRight .newsList .otherNews li a {
  color: black;
  border: 1px solid var(--borderColor);
  place-content: center;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  background-color: white;
}
.news .mainWrapper .mainWrapperRight .newsList .otherNews li:nth-of-type(1) a {
  background-color: black;
  color: white;
}
.news .mainWrapper .mainWrapperRight .newsList .otherNews li:nth-of-type(6) a {
  border: 1px solid white;
}

.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.ir .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.ir .mainWrapper .mainWrapperRight > picture {
  height: auto;
  display: block;
}
.ir .mainWrapper .mainWrapperRight > picture img {
  height: auto;
  width: 100%;
}
.ir .mainWrapper .mainWrapperRight .accounts hgroup {
  padding: 8rem 4rem 6rem 4rem;
}
.ir .mainWrapper .mainWrapperRight .accounts hgroup h2 {
  font-size: 3rem;
}
.ir .mainWrapper .mainWrapperRight .accounts hgroup p {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.ir .mainWrapper .mainWrapperRight .accounts ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ir .mainWrapper .mainWrapperRight .accounts ul li {
  display: grid;
  border-bottom: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a {
  position: relative;
  display: block;
  padding: 4rem 3rem;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  z-index: 2;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(calc(-100% - 1px));
  transition-property: transform;
  width: 100%;
  z-index: -1;
  background-color: rgb(40, 40, 45);
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a div p {
  font-size: 2.5rem;
  padding-right: 2rem;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a div img {
  transition: filter 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 1.8rem;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a > p {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a:hover {
  color: white;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a:hover::before {
  transform: translateX(0);
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a:hover img {
  filter: brightness(0) invert(1);
}
.ir .mainWrapper .mainWrapperRight .accounts ul li {
  border-right: 1px solid var(--borderColor);
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a {
  font-size: 1.8rem;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ir .mainWrapper .mainWrapperRight .accounts ul li a img {
  display: block;
  width: 1.4rem;
}
.ir .mainWrapper .mainWrapperRight .accounts .download {
  padding: 3rem 4rem;
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .accounts .download a {
  display: grid;
  position: relative;
  place-content: center;
  background-color: black;
  height: 6rem;
  font-size: 1.7rem;
  color: white;
}
.ir .mainWrapper .mainWrapperRight .accounts .download a img {
  position: absolute;
  width: 2rem;
  top: 2rem;
  right: 3rem;
  display: block;
}
.ir .mainWrapper .mainWrapperRight .IRNews {
  padding: 6rem 4rem;
  display: flex;
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .IRNews h2 {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 35rem;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div {
  width: 100%;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul {
  margin-top: 0;
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a {
  display: flex;
  row-gap: 1.6rem;
  border-bottom: 1px solid var(--borderColor);
  flex-wrap: nowrap;
  font-size: 1.2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > div {
  flex-shrink: 0;
  width: 12%;
  margin-left: 0;
  padding-top: 0.4rem;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > div p {
  padding: 0.6rem;
  border: 1px solid black;
  display: inline-block;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > p:nth-of-type(1) {
  flex-shrink: 0;
  margin-left: 0;
  padding-top: 0.4rem;
  width: 12%;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > p:nth-of-type(2) {
  width: 100%;
  font-size: 1.5rem;
  padding-right: 6rem;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > p:nth-of-type(3) {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem;
  width: 15%;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a > p:nth-of-type(3) span {
  font-size: 1rem;
  padding: 0.3rem;
  display: inline-block;
  background-color: black;
  color: white;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div ul li a img {
  width: 2rem;
  display: block;
  margin-left: auto;
  padding-left: 0.6rem;
  padding-top: 0.8rem;
}
.ir .mainWrapper .mainWrapperRight .IRNews > div > a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  margin-top: 4rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .ir .mainWrapper .mainWrapperRight .IRNews > div > a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.ir .mainWrapper .mainWrapperRight .IRNews > div > a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .ir .mainWrapper .mainWrapperRight .IRNews > div > a:hover {
    color: rgb(40, 40, 45);
  }
  .ir .mainWrapper .mainWrapperRight .IRNews > div > a:hover::before {
    transform: scale(1, 1);
  }
}
.ir .mainWrapper .mainWrapperRight .IRCalendar {
  padding: 6rem 4rem;
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .IRCalendar h2 {
  font-size: 2.2rem;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar > picture {
  min-width: none;
  margin-top: 5rem;
  display: block;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar > picture img {
  width: 100%;
  height: auto;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section {
  margin-top: 8rem;
  display: flex;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section h3 {
  font-size: 2rem;
  flex-shrink: 0;
  width: 35rem;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section ul {
  margin-top: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  width: 100%;
  border-bottom: 1px solid var(--borderColor);
  border-top: 1px solid var(--borderColor);
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section ul li {
  font-size: 1.5rem;
  display: flex;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section ul li:not(:first-of-type) {
  margin-top: 2rem;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section ul li p:nth-of-type(1) {
  width: 12rem;
}
.ir .mainWrapper .mainWrapperRight .IRCalendar section ul li p:nth-of-type(2) {
  margin-left: 8rem;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance {
  border-top: 1px solid var(--borderColor);
  padding: 6rem 4rem;
  display: flex;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance h2 {
  flex-shrink: 0;
  font-size: 2.2rem;
  width: 35rem;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance > div {
  position: relative;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance > div div {
  overflow-x: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance > div div figure {
  display: block;
  border: 1px solid var(--borderColor);
  width: 100%;
}
.ir .mainWrapper .mainWrapperRight .CorporateGovernance > div div figure img {
  height: auto;
  width: 100%;
}

.HeadingPictures {
  position: relative;
  grid-template-columns: 46% 18% 18% 18%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  display: grid;
}
.HeadingPictures picture:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1;
}
.HeadingPictures picture:nth-of-type(2) {
  grid-row: 1;
  grid-column: 2;
}
.HeadingPictures picture:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}
.HeadingPictures picture:nth-of-type(4) {
  grid-column: 4;
  grid-row: 1;
}
.HeadingPictures picture:nth-of-type(5) {
  grid-column: 2/5;
  grid-row: 2;
}
.HeadingPictures picture img {
  height: 100%;
  width: 100%;
}

.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.recruit .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.recruit .mainWrapper .mainWrapperRight .message {
  padding-top: 6rem;
}
.recruit .mainWrapper .mainWrapperRight .message .messageTop {
  padding-left: 4rem;
  padding-right: 4rem;
}
.recruit .mainWrapper .mainWrapperRight .message h2 {
  font-size: 2.2rem;
}
.recruit .mainWrapper .mainWrapperRight .message p {
  font-size: 6.2rem;
  margin-top: 6rem;
}
.recruit .mainWrapper .mainWrapperRight .message .messageBottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6rem;
}
.recruit .mainWrapper .mainWrapperRight .message .messageBottom picture {
  aspect-ratio: 1/1;
}
.recruit .mainWrapper .mainWrapperRight .message .messageBottom picture img {
  width: 100%;
  height: 100%;
}
.recruit .mainWrapper .mainWrapperRight .message .messageBottom p {
  border-top: 1px solid var(--borderColor);
  line-height: 1.7;
  margin-top: 0;
  font-size: 1.6rem;
  padding: 6rem 4rem;
}
.recruit .mainWrapper .mainWrapperRight .careers {
  padding-bottom: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--borderColor);
}
.recruit .mainWrapper .mainWrapperRight .careers .careersTop {
  padding: 0rem 4rem;
  display: flex;
  align-items: flex-start;
}
.recruit .mainWrapper .mainWrapperRight .careers .careersTop h2 {
  font-size: 2.2rem;
  width: 23.5rem;
}
.recruit .mainWrapper .mainWrapperRight .careers .careersTop p {
  font-size: 4.5rem;
}
.recruit .mainWrapper .mainWrapperRight .careers ul {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  padding-right: 0;
}
.recruit .mainWrapper .mainWrapperRight .careers ul a {
  display: block;
}
.recruit .mainWrapper .mainWrapperRight .careers ul a picture {
  overflow: hidden;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
}
.recruit .mainWrapper .mainWrapperRight .careers ul a picture img {
  width: 100%;
  height: 100%;
}
.recruit .mainWrapper .mainWrapperRight .careers ul a p {
  font-size: 1.8rem;
  margin-left: 3rem;
  margin-top: 2rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview {
  padding-bottom: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--borderColor);
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview h2 {
  font-size: 2.2rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom {
  display: grid;
  margin-top: 6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article {
  padding: 0;
  border-right: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a figure {
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a figure img {
  height: 100%;
  width: 100%;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a div {
  padding: 3rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a div h3 {
  font-size: 1.8rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a div ul {
  display: flex;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1.1rem;
  row-gap: 0.4rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewBottom article a div p {
  background-color: #F7723E;
  font-size: 1.2rem;
  padding: 0.8rem;
  color: white;
  display: inline-block;
  margin-top: 1.4rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton {
  padding-left: 4rem;
  padding-right: 4rem;
  margin-top: 4rem;
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid rgb(40, 40, 45);
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: var(--buttonColorBlack);
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton a:hover {
    color: rgb(40, 40, 45);
  }
  .recruit .mainWrapper .mainWrapperRight .recruitInterview .recruitInterviewButton a:hover::before {
    transform: scale(1, 1);
  }
}
.recruit .mainWrapper .mainWrapperRight .createrBlog {
  color: white;
  background-color: rgb(107, 107, 110);
}
.recruit .mainWrapper .mainWrapperRight .createrBlog h2 {
  border-bottom: 1px solid white;
  padding: 4rem;
  font-size: 2.2rem;
}
.recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom {
  border-left: 1px solid white;
  margin-left: 23.2rem;
  padding: 5rem;
  padding-bottom: 18rem;
}
.recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom p:nth-of-type(1) {
  font-size: 4.5rem;
  line-height: 1.4;
}
.recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom p:nth-of-type(2) {
  font-size: 5.5rem;
  margin-top: 2rem;
}
.recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom a {
  width: 19.4rem;
  height: 4.4rem;
  margin-top: 0;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  border: 1px solid white;
  place-content: center;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: color 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
  --tw-bg-opacity: 1;
  background-color: transparent;
  z-index: 2;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom a {
    margin-top: 3rem;
    width: 15.5rem;
    height: 4rem;
  }
}
.recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom a::before {
  content: "";
  height: 100%;
  left: 0;
  background: white;
  position: absolute;
  top: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.55, 1);
  width: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  z-index: -1;
}
@media (any-hover: hover) {
  .recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom a:hover {
    color: rgb(40, 40, 45);
  }
  .recruit .mainWrapper .mainWrapperRight .createrBlog .createrBlogBottom a:hover::before {
    transform: scale(1, 1);
  }
}
.recruit .mainWrapper .mainWrapperRight .ourOffice {
  padding-bottom: 6rem;
}
.recruit .mainWrapper .mainWrapperRight .ourOffice h2 {
  font-size: 2.2rem;
  padding: 4rem;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOffice ul li {
  width: 93.2rem;
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOffice ul li figure picture img {
  height: auto;
  width: 100%;
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOfficeButton {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-left: 4rem;
  padding-right: 4rem;
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOfficeButton .swiper-scrollbar {
  width: 21rem;
  height: 1px;
  background-color: var(--borderColor);
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOfficeButton .swiper-scrollbar > div {
  width: 14.28571%;
  height: 100%;
  display: block;
  background-color: black;
}
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOfficeButton .pageButton .swiper-button-next::after,
.recruit .mainWrapper .mainWrapperRight .ourOffice .mySwiperOfficeButton .pageButton .swiper-button-prev::after {
  content: "";
}

.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer {
  padding-top: 5rem;
  justify-content: flex-start;
}
.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer > p {
  font-size: 2.2rem;
}
.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul {
  margin-top: 6rem;
}
.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li {
  margin-top: 1rem;
  overflow: hidden;
}
.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: flex-start;
}
.contact .mainWrapper .mainWrapperLeft .mainWrapperLeftContainer ul li a span:first-child {
  width: 2rem;
  padding-right: 0.4rem;
  display: block;
}

.contact .mainWrapper .mainWrapperRight .contactContainer {
  display: flex;
  gap: 12rem;
  padding: 6rem 4rem 8rem 4rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerLeft {
  font-size: 1.5rem;
  line-height: 1.7;
  width: 28rem;
  flex-shrink: 0;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerLeft p:last-of-type {
  margin-top: 2rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer form {
  max-width: 65rem;
  width: 100%;
  font-size: 1.2rem;
  margin-top: 0;
}
.contact .mainWrapper .mainWrapperRight .contactContainer form div {
  margin-top: 4rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer form div dt {
  overflow: hidden;
  font-weight: 100;
  font-size: 1.2rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer form div dd {
  margin-top: 1rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer form div dd input,
.contact .mainWrapper .mainWrapperRight .contactContainer form div dd textarea {
  padding: 1.8rem 2rem;
  width: 100%;
  border: 1px solid var(--borderColor);
  border-bottom: 2px solid var(--borderColor);
}
.contact .mainWrapper .mainWrapperRight .contactContainer form div dd textarea {
  height: 20rem;
  width: 100%;
  padding: 1.8rem 2rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther {
  margin-top: 4rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop label {
  font-size: 1.2rem;
  align-items: flex-start;
  display: flex;
  gap: 2rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop label input {
  height: 100%;
  border: 1px solid var(--borderColor);
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop p {
  margin-top: 1rem;
  margin-left: 2.6rem;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop p a {
  display: inline-block;
}
.contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop p a a {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: flex;
  z-index: 100;
  transition: background-size 0.3s cubic-bezier(0.17, 0.67, 0.55, 1);
}
@media (any-hover: hover) {
  .contact .mainWrapper .mainWrapperRight .contactContainer .contactContainerOther .contactContainerOtherTop p a a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}/*# sourceMappingURL=style.css.map */